home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Games Extra 1996 September
/
Amiga Games Extra CD-ROM 9-1996.iso
/
userbox
/
publicdomain
/
amisearch11
/
installation-english
< prev
next >
Wrap
Text File
|
1996-07-05
|
2KB
|
81 lines
;$VER:AmiSearch installation script
(complete 0)
(set @default-dest "Work:")
; Texts
(set #Warning-Txt
(cat "Warning !\n\n\n"
"AmiSearch needs MUI 3.3+ to work.\n\n"
"Without MUI AmiSearch won't work...\n\n"
))(set #Path-Txt
(cat "Please choose target directory."
"An AmiSearch drawer will be created there."
))(set #Path-Help
(cat "This part allows you to choose the directory where AmiSearch will be copied.\n\n"
"An AmiSearch drawer is created there, in order to allow a better index handling.\n\n"
"The default one is Work:\n\n\n"
))
; Main
(message #Warning-Txt)
(set target
(askdir (prompt #Path-Txt) (help #Path-Help) (default @default-dest) (newpath)
))
(set @default-dest (tackon target "AmiSearch"))
(makedir (tackon target "AmiSearch")(infos))
(makedir (tackon target "AmiSearch/Docs") (infos))
(makedir (tackon target "AmiSearch/Index") (infos))
(copyfiles
(prompt "Copying software")
(help @copy-files-help)
(source "AmiSearch")
(dest (tackon target "AmiSearch"))
(infos))
(copyfiles
(prompt "Copying convert script")
(help @copy-files-help)
(source "ConvertConfig")
(dest (tackon target "AmiSearch"))
(infos))
(complete 20)
(copyfiles (prompt "Copying localisation") (source "Locale/AmiSearch.cd") (dest "LOCALE:"))
(complete 50)
(copyfiles
(prompt "Copying manual")
(help @copy-files-help)
(source "Docs/English_Manual.guide")
(dest (tackon target "AmiSearch/Docs"))
(infos))
(copyfiles
(prompt "Copying ReadMe.mui")
(help @copy-files-help)
(source "Docs/ReadMe.mui")
(dest (tackon target "AmiSearch/Docs"))
(infos))
(complete 75)
(copyfiles
(prompt "Copying environment")
(help @copy-files-help)
(source "ENVARC/AmiSearch.sets")
(dest "ENVARC:")
)
(copyfiles
(prompt "Copying environment")
(help @copy-files-help)
(source "ENVARC/AmiSearch.sets")
(dest "ENV:")
)
(complete 100)